Skip to content

Instantly share code, notes, and snippets.

View LakshyaKhatri's full-sized avatar
🐢

Lakshya Khatri LakshyaKhatri

🐢
View GitHub Profile
#include <iostream>
using namespace std;
int **wtable;
int **wtable_copy;
int *channel_sequence;
int build_walsh_table(int len, int start_i, int end_i, int start_j, int end_j, bool is_bar) {
// is_bar represents whether we want to add simple entry
// or complement(southeast submatrix) to wtable.
from selenium import webdriver
driver = webdriver.Firefox()
driver.get("""file:////home/aries/Desktop/voteforshreya/h.html""")
assert "Miss" in driver.title
for _ in range(1000):
print(_)
radio_btn = driver.find_element_by_id("poll-answer-963")
if(not radio_btn.is_selected()):
"""This
string
can be
extended
to any
number
of
lines."""
"The quick brown fox jumps over the lazy dog."
"L"
"They say \"Python is awesome\"."
"let's use a single quote within a double quote string."
"Hey! I'm learning python."
'The quick brown fox jumps over the lazy dog.'
'L'
'The say "Python is awesome".'
'let\'s use a single quote within a single quote string.'
'Hey! I\'m learning python.'