Skip to content

Instantly share code, notes, and snippets.

View pycoders0000's full-sized avatar

Python Devs pycoders0000

View GitHub Profile
print("Hello World")
class HelloWorld {
public static void main(String[] args) {
System.out.println("Hello, World!");
}
}
#include <iostream>
int main() {
std::cout << "Hello World!";
return 0;
}
# -*- coding: utf-8 -*-
# @Date : 2022-07-25 09:10:55
# @Author : pycoder.py
# @GitHub : (https://github.com/pycoders0000)
# @Twitter : (https://twitter.com/pycoder0000)
# @Instagram : (https://www.instagram.com/pycoder.py/)
# @Version : 1.0.0
def defangaddress(address: str):
return address.replace(".", "[.]")
# -- coding: utf-8 --
# @Date : 2022-07-25 03:00:05
# @Author : pycoder.py
# @GitHub : (https://github.com/pycoders0000)
# @Twitter : (https://twitter.com/pycoder0000)
# @Instagram : (https://www.instagram.com/pycoder.py/)
# @version : 1.0.0
test_str = "pycoder.py"
# -*- coding: utf-8 -*-
# @Date : 2022-07-26 07:14:08
# @Author : pycoder.py
# @GitHub : (https://github.com/pycoders0000)
# @Twitter : (https://twitter.com/pycoder0000)
# @Instagram : (https://www.instagram.com/pycoder.py/)
# @Version : 1.0.0
def search(cards, query):
position = 0
# -- coding: utf-8 --
# @Date : 2022-12-27 01:00:01
# @Author : pycoder.py
# @GitHub : (https://github.com/pycoders0000)
# @Twitter : (https://twitter.com/pycoder0000)
# @Instagram : (https://www.instagram.com/pycoder.py/)
# @version : 1.0.0
import numpy as np
# -- coding: utf-8 --
# @Date : 2022-12-28 05:00:00
# @Author : pycoder.py
# @GitHub : (https://github.com/pycoders0000)
# @Twitter : (https://twitter.com/pycoder0000)
# @Instagram : (https://www.instagram.com/pycoder.py/)
# @version : 1.0.0
def anagram(word1, word2):