Category: URI Online Judge

22
Jan
2022

Selenium Testing with Python

  https://demo.seleniumeasy.com/basic-first-form-demo.html Python selenium commands cheat sheet from selenium import webdriver #chrome_browser=webdriver.Chrome(‘./chromedriver’) driver = webdriver.Chrome() driver.get(“https://demo.seleniumeasy.com/basic-first-form-demo.html”) driver.maximize_window()…

16
Feb
2017

URI Online Judge | 1030 Flavious Josephus Legend

This is level 3 problem so will do it later. But this video will help for  sure….

02
Jan
2017

URI Online Judge Solution | 1049 Animal

strcmp in c/c++ issues is the hard part nothing else…Just try to learn this 🙂 Logical condition…

02
Jan
2017

URI Online Judge Solution | 1048 Salary Increase

My failed code: http://ideone.com/4o96LX My succeeded accepted code: #include<iostream> #include<cstdio> using namespace std; int main() { double…

04
Feb
2016

URI Online Judge Solution | 1332 One-Two-Three | UVA 12289

Reference: https://github.com/deniscostadsc/playground/blob/master/uri/1332/1332.cpp Code: #include<cstdio> #include<cstring> using namespace std; int main() { int n; char s[6]; scanf(“%d”,&n); while(n–){ scanf(“%s”,&s);…

25
Jan
2016

URI Online Judge Solution| 1168 LED

#include<cstdio> #include<cstdlib> #include<cstring> int main() { char x[1111]; int i,j,n,sum=0; scanf(“%d”,&n); for(i=0; i<n; i++) { scanf(“%s”,x); for(j=0;…