HTMLify your dreams

Filter Options:
digital_sum.py | Owner: abh | Views: 234 | Comments: 0 | Open/ Source 255 B

def digital_sum(n: int): s = 0 while n: s += n % 10 n //= 10 return s def digital_sum(n: int):

index.html | Owner: cody | Views: 101 | Comments: 0 | Open/ Source 489 B

<!DOCTYPE html> <html> <head> <meta charset='utf-8'> <meta http-equiv='X-UA-Compatible' content='IE=edge'> <title>T

index.html | Owner: cody | Views: 188 | Comments: 0 | Open/ Source 4.64 KB

<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Login 03</title> <meta name=

index.html | Owner: cody | Views: 164 | Comments: 0 | Open/ Source 519 B

<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8" /> <meta http-equiv="X-UA-Compatible" content="IE=edge" />

index.html | Owner: cody | Views: 222 | Comments: 0 | Open/ Source 1.23 KB

<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Menu Example</title> <meta n

LeetCode - Matrix Diagonal Sum - Python | Owner: abh | Views: 227 | Comments: 0 | Open/ Source 282 B

class Solution: def diagonalSum(self, mat: List[List[int]]) -> int: i = 0 s = 0 if len(mat)%2:

Zoro | Owner: light | Views: 32 | Comments: 0 | Open/ Source 4.63 KB

<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, in

index.html | Owner: cody | Views: 144 | Comments: 0 | Open/ Source 1.09 KB

<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge">

index.html | Owner: cody | Views: 168 | Comments: 0 | Open/ Source 1.14 KB

<!--index.html--> <!DOCTYPE html> <html lang="en"> <head> <title>Maths Game</title> <meta charset="utf-8"> <meta na

index.html | Owner: cody | Views: 156 | Comments: 0 | Open/ Source 1.66 KB

<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, in

Os Cpu Scheduling question with solution | Owner: djdj | Views: 315 | Comments: 0 | Open/ Source 2.33 MB

hello-world.cobra | Owner: demo | Views: 249 | Comments: 0 | Open/ Source 58 B

For-Loop.php | Owner: djdj | Views: 208 | Comments: 0 | Open/ Source 80 B

<?php //for loop for ($i=0; $i <= 10; $i++) { echo $i; } ?>

Remove All Target from array with O(n) | Owner: abh | Views: 216 | Comments: 0 | Open/ Source 286 B

def remove_target(target, array): array = array.copy() ofset = 0 for i in range(len(array)): if array[i]

index.html | Owner: dakshbadal1379 | Views: 127 | Comments: 0 | Open/ Source 3.21 KB

<!DOCTYPE html> <html lang="en"> <head> <!-- Design by foolishdeveloper.com --> <title>Glassmorphism login Form Tutori

index.html | Owner: cody | Views: 174 | Comments: 0 | Open/ Source 2.97 KB

<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, in

Session_Logout.php | Owner: djdj | Views: 157 | Comments: 0 | Open/ Source 104 B

<?php session_start(); session_unset(); session_destroy(); echo "you are logged out"; ?>

upload certificate.html | Owner: sachinthakur | Views: 211 | Comments: 0 | Open/ Source 4.15 KB

<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge">

LeetCode - Apply Discount Every n Orders - Go | Owner: abh | Views: 12 | Comments: 0 | Open/ Source 1.09 KB

type Cashier struct { customers_done int n int discount int products []int prices []int } func Co

are_anagrams.py | Owner: abh | Views: 185 | Comments: 0 | Open/ Source 789 B

TESTCCASES = [ { "positional": ("string", "string",), "keyword": {}, "return": True, "msg":

index.html | Owner: cody | Views: 143 | Comments: 0 | Open/ Source 1.63 KB

<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge">

T4 | Owner: itintern | Views: 8 | Comments: 0 | Open/ Source 6.34 KB

<html lang="en"><head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0">

index.html | Owner: cody | Views: 145 | Comments: 0 | Open/ Source 1.45 KB

<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, in

LeetCode - First Letter to Appear Twice - Python | Owner: abh | Views: 224 | Comments: 0 | Open/ Source 185 B

class Solution: def repeatedCharacter(self, s: str) -> str: seen = set() for c in s: if c in

index.html | Owner: cody | Views: 148 | Comments: 0 | Open/ Source 969 B

<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Toast Notification 01</title>

index.html | Owner: cody | Views: 143 | Comments: 0 | Open/ Source 1.29 KB

<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge">

index.html | Owner: cody | Views: 186 | Comments: 0 | Open/ Source 1.74 KB

<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Gallery 04</title> <meta name

diq.html | Owner: djdj | Views: 264 | Comments: 0 | Open/ Source 2.76 KB

<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=devi

index.html | Owner: cody | Views: 199 | Comments: 0 | Open/ Source 2.55 KB

<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Tabs Integrations</title> <me

rbott.py | Owner: abh | Views: 235 | Comments: 0 | Open/ Source 2.05 KB

from random import randint from time import sleep class Grid: def __init__(self, bots = [].copy()): self.width

index.html | Owner: cody | Views: 204 | Comments: 0 | Open/ Source 1.01 KB

<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge">

LeetCode - Find Customer Referee - MySQL | Owner: abh | Views: 230 | Comments: 0 | Open/ Source 70 B

SELECT name FROM Customer WHERE referee_id != 2 OR referee_id IS NULL;

LeetCode - Print FooBar Alternately - Python | Owner: abh | Views: 44 | Comments: 0 | Open/ Source 728 B

from time import sleep class FooBar: def __init__(self, n): self.n = n self.next = "foo" def

LeetCode - Divide an Array Into Subarrays With Minimum Cost I - Python | Owner: abh | Views: 40 | Comments: 0 | Open/ Source 211 B

class Solution: def minimumCost(self, nums: List[int]) -> int: c = nums[0] nums = nums[1:] s = m

Chatgpt.py | Owner: amar | Views: 353 | Comments: 0 | Open/ Source 2.73 KB

import gradio as gr import openai from kivy.core.clipboard import Clipboard prompt = "Send a message" def chat(promp

index.html | Owner: cody | Views: 200 | Comments: 0 | Open/ Source 399 B

<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, in

Require-Include.php | Owner: djdj | Views: 199 | Comments: 0 | Open/ Source 847 B

<?php echo"Include:<br>"; //include include 'MySQL-Databases-Connection.php'; //include will only produce a warning

index.html | Owner: cody | Views: 160 | Comments: 0 | Open/ Source 3.03 KB

<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, in

index.html | Owner: cody | Views: 94 | Comments: 0 | Open/ Source 1022 B

<!DOCTYPE html> <html> <head> <meta charset='utf-8'> <meta http-equiv='X-UA-Compatible' content='IE=edge'> <title>S

Operator.php | Owner: djdj | Views: 211 | Comments: 0 | Open/ Source 1.7 KB

<?php /*Operators 1. Arithmetic Operator 2. Assignment Operator 3. Comparison Operator 4. Logical Operator */ $a = 10; $b = 5

index.html | Owner: cody | Views: 170 | Comments: 0 | Open/ Source 1.65 KB

<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge">

is_palindrome.py | Owner: abh | Views: 216 | Comments: 0 | Open/ Source 606 B

#Check the given string, number or list is palindrome or not. def is_palindrome(n: int) -> bool: r = 0 t = n while

index.html | Owner: cody | Views: 130 | Comments: 0 | Open/ Source 472 B

<!DOCTYPE html> <html> <head> <meta charset='utf-8'> <meta http-equiv='X-UA-Compatible' content='IE=edge'> <title>F

Tranform & Transition | Owner: djdj | Views: 39 | Comments: 0 | Open/ Source 948 B

<style> body{ background-color: black; } .box { width: 100px; height: 100px; background-color: rgb(103, 1

LeetCode - Big Countries | Owner: abh | Views: 251 | Comments: 0 | Open/ Source 89 B

SELECT name, population, area FROM world WHERE area >= 3000000 or population >= 25000000;

index.html | Owner: cody | Views: 180 | Comments: 0 | Open/ Source 1.98 KB

<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, in

index.html | Owner: cody | Views: 166 | Comments: 0 | Open/ Source 1.08 KB

<!-- Awesome Vanilla Javascript Image Slider! by Simo Edwin - Dev Ed (2021) see: https://www.youtube.com/watch?v=ee8y1IV6pOI -->

LeetCode - Reverse String - Python | Owner: abh | Views: 36 | Comments: 0 | Open/ Source 231 B

class Solution: def reverseString(self, s: List[str]) -> None: """ Do not return anything, modify s in-pl

index.html | Owner: cody | Views: 114 | Comments: 0 | Open/ Source 370 B

<!DOCTYPE html> <html> <head> <meta charset='utf-8'> <meta http-equiv='X-UA-Compatible' content='IE=edge'> <title>F

Function.php | Owner: djdj | Views: 160 | Comments: 0 | Open/ Source 627 B

<?php //Function in php $ram = [90, 88, 85, 95, 91]; $sum = marks($ram); // function call $ave = avera($ram);//

getAttribute.html | Owner: shubh | Views: 215 | Comments: 0 | Open/ Source 804 B

// getAttribute <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=dev

index.html | Owner: cody | Views: 180 | Comments: 0 | Open/ Source 377 B

<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, in

Else | Owner: djdj | Views: 10 | Comments: 0 | Open/ Source 3.47 KB

<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, in

median.py | Owner: abh | Views: 227 | Comments: 0 | Open/ Source 288 B

def median(series): s = series.copy() s.sort() n = len(s) if n % 2 == 1: return s[n // 2] return (s[

LeetCode - Two Sum II - Input Array Is Sorted - Go | Owner: abh | Views: 40 | Comments: 0 | Open/ Source 486 B

func twoSum(numbers []int, target int) []int { var last_i int for i:=0;i<len(numbers)-1;i++ { if i!=0 && last

index.html | Owner: cody | Views: 103 | Comments: 0 | Open/ Source 417 B

<!DOCTYPE html> <html> <head> <meta charset='utf-8'> <meta http-equiv='X-UA-Compatible' content='IE=edge'> <title>T

Drawing App | Owner: cody | Views: 165 | Comments: 0 | Open/ Source 603 B

<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width

LeetCode - Find the Encrypted String - Python | Owner: abh | Views: 41 | Comments: 0 | Open/ Source 139 B

class Solution: def getEncryptedString(self, s: str, k: int) -> str: return "".join([s[(i+k)%len(s)] for i in rang

window.html | Owner: cody | Views: 58 | Comments: 0 | Open/ Source 631 B

<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1">

index.html | Owner: cody | Views: 197 | Comments: 0 | Open/ Source 2.3 KB

<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, in

index.html | Owner: cody | Views: 99 | Comments: 0 | Open/ Source 921 B

<!DOCTYPE html> <html> <head> <meta charset='utf-8'> <meta http-equiv='X-UA-Compatible' content='IE=edge'> <title>S

LeetCode - Design Parking System - Go | Owner: abh | Views: 10 | Comments: 0 | Open/ Source 760 B

type ParkingSystem struct { big int medium int small int } func Constructor(big int, medium int, small int) Parki

index.html | Owner: cody | Views: 102 | Comments: 0 | Open/ Source 4.23 KB

<!DOCTYPE html> <html> <head> <meta charset='utf-8'> <meta http-equiv='X-UA-Compatible' content='IE=edge'> <title>C

LeetCode - Squares of a Sorted Array - Python | Owner: abh | Views: 194 | Comments: 0 | Open/ Source 129 B

class Solution: def sortedSquares(self, nums: List[int]) -> List[int]: return list(sorted(map(lambda a:a*a, nums))

index.html | Owner: cody | Views: 160 | Comments: 0 | Open/ Source 329 B

<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, in

No body loves you | Owner: abh | Views: 408 | Comments: 0 | Open/ Source 282 B

<head> <meta name="viewport" content="width=device-width, initial-scale=1"> </head> <title>Nobody loves you</title> <center>

index.html | Owner: cody | Views: 156 | Comments: 0 | Open/ Source 3.93 KB

<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-s

arithmetic_operation.py | Owner: djdj | Views: 208 | Comments: 0 | Open/ Source 87 B

a = int(input()) b = int(input()) print(a+b) print(a-b) print(a*b)

Heart.html | Owner: amar | Views: 201 | Comments: 0 | Open/ Source 5.82 KB

<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, in

LeetCode - Reverse Only Letters - Python | Owner: abh | Views: 240 | Comments: 0 | Open/ Source 393 B

class Solution: def reverseOnlyLetters(self, s: str) -> str: s = list(s) chars = "qwertyuiopasdfghjklzxcv

index.html | Owner: cody | Views: 161 | Comments: 0 | Open/ Source 1.08 KB

<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge">

| Owner: djdj | Views: 11 | Comments: 0 | Open/ Source 2.56 KB

<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width

| Owner: itintern | Views: 54 | Comments: 0 | Open/ Source 52.57 KB

<!DOCTYPE html> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta charset="utf-8"/> <meta name="generator" content="p

about.html | Owner: demo | Views: 304 | Comments: 0 | Open/ Source 1.73 KB

<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, in

Weather checker | Owner: amar | Views: 30 | Comments: 0 | Open/ Source 8.96 KB

<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, init

user-files.html | Owner: abh | Views: 239 | Comments: 0 | Open/ Source 144 B

<!-- user-files.html --> {% for file in files %} {{ loop.index }}<a href=" {{ file.path }}">{{ file.name }}</a> {{ file.size }}<

Variable.php | Owner: djdj | Views: 66 | Comments: 0 | Open/ Source 301 B

<?php $name = "Dj"; echo "This is $name"; /* 1. start with a $ sign. 2. cannot satrt with a number. 3. must start with

| Owner: djdj | Views: 3 | Comments: 0 | Open/ Source 3.78 KB

<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, in

word_frequency.py | Owner: abh | Views: 178 | Comments: 0 | Open/ Source 198 B

def word_frequency(text: str) -> dict: words = text.split() word_f = {} for word in words: w = word.strip(".

index.html | Owner: cody | Views: 175 | Comments: 0 | Open/ Source 668 B

<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, in

index.html | Owner: cody | Views: 151 | Comments: 0 | Open/ Source 1.2 KB

<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-s

index.html | Owner: cody | Views: 169 | Comments: 0 | Open/ Source 571 B

<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initia

LeetCode - Middle of the Linked List - Go | Owner: abh | Views: 7 | Comments: 0 | Open/ Source 379 B

/** * Definition for singly-linked list. * type ListNode struct { * Val int * Next *ListNode * } */ func mi

insertElement.html | Owner: shubh | Views: 219 | Comments: 0 | Open/ Source 1.1 KB

//insert element <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=d

quiz app | Owner: cody | Views: 195 | Comments: 0 | Open/ Source 1.16 KB

<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width

index.html | Owner: cody | Views: 153 | Comments: 0 | Open/ Source 1.35 KB

<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, in

index.html | Owner: cody | Views: 167 | Comments: 0 | Open/ Source 704 B

<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge">

signup.php | Owner: djdj | Views: 87 | Comments: 0 | Open/ Source 6.33 KB

<?php // session_start(); // if(isset($_SESSION['loggedin']) || $_SESSION['loggedin'] == true){ // header('location:

| Owner: djdj | Views: 5 | Comments: 0 | Open/ Source 1.31 KB

<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8" /> <meta http-equiv="X-UA-Compatible" content="IE=ed

Windows 11 | Owner: cody | Views: 179 | Comments: 0 | Open/ Source 2.2 KB

<html lang="en"> <meta http-equiv="content-type" content="text/html;charset=UTF-8" /> <head> <meta charset="UTF-8">

LeetCode - Longest Strictly Increasing or Strictly Decreasing Subarray - Go | Owner: abh | Views: 22 | Comments: 0 | Open/ Source 524 B

func longestMonotonicSubarray(nums []int) int { l := 0 le := 0 ci := 0 for _, v := range nums { i

index.html | Owner: cody | Views: 98 | Comments: 0 | Open/ Source 548 B

<!DOCTYPE html> <html> <head> <meta charset="utf-8" /> <meta http-equiv="X-UA-Compatible" content="IE=edge" /> <ti

index.html | Owner: cody | Views: 190 | Comments: 0 | Open/ Source 6.91 KB

<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Toolbar Menu</title> <meta nam

t.html | Owner: djdj | Views: 5 | Comments: 0 | Open/ Source 1.83 KB

<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, in

birth-certificate-template-upabh.html | Owner: djdj | Views: 0 | Comments: 0 | Open/ Source 199.21 KB

<html><head> <script src="https://code.jquery.com/jquery-3.6.0.min.js" integrity="sha256-/xUj+3OJU5yExlq6GSYGSHk7tPXikynS7o

README.md | Owner: djdj | Views: 296 | Comments: 0 | Open/ Source 341 B

- šŸ‘‹ Hi, Iā€™m @upraity - šŸ‘€ Iā€™m interested in programmimg - šŸŒ± Iā€™m currently learning language - šŸ’žļø Iā€™m looking to collaborate on ..

demo02 | Owner: light | Views: 28 | Comments: 0 | Open/ Source 2.42 KB

<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, in

login.html | Owner: abh | Views: 206 | Comments: 0 | Open/ Source 769 B

<!DOCTYPE html> <html> <head> <title>Login</title> {% include "stylesheet.html" %} <style> </style> </head> <bo

index.html | Owner: cody | Views: 172 | Comments: 0 | Open/ Source 1.64 KB

<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8" /> <meta http-equiv="X-UA-Compatible" content="IE=edge" />

index.html | Owner: cody | Views: 155 | Comments: 0 | Open/ Source 3.25 KB

<!-- Based on Mobile-First Responsive Build (with CSS Grid) by Shaun Pelling - The Net Ninja (2020) see: https://www.youtube.com

index.html | Owner: cody | Views: 134 | Comments: 0 | Open/ Source 7.88 KB

<!-- Based on Design & Build A Website Crash Course by Simo Edwin - Dev Ed (2019) see: https://www.youtube.com/watch?v=EwmvBnR_x

56.txt | Owner: coderai | Views: 174 | Comments: 0 | Open/ Source 1.37 KB

The provided text describes the subreddit r/qocp as an online community for fans of the music artist QOCP. It serves as a platf

OTP Generator.html | Owner: shubh | Views: 251 | Comments: 0 | Open/ Source 467 B

<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initia

index.html | Owner: cody | Views: 113 | Comments: 0 | Open/ Source 513 B

<!DOCTYPE html> <html> <head> <meta charset="utf-8" /> <meta http-equiv="X-UA-Compatible" content="IE=edge" /> <ti

index.html | Owner: cody | Views: 200 | Comments: 0 | Open/ Source 919 B

<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, in

README.md | Owner: cody | Views: 2 | Comments: 0 | Open/ Source 12.79 KB

# 50 Projects in 50 Days - HTML/CSS and JavaScript This is the main repository for all of the projects in the course. -

LeetCode - Count Prefix and Suffix Pairs I - Python | Owner: abh | Views: 74 | Comments: 0 | Open/ Source 407 B

class Solution: def isPrefixAndSuffix(self, str1: str, str2: str): return str2.startswith(str1) and str2.endswith(

LeetCode - Search a 2D Matrix - Python | Owner: abh | Views: 353 | Comments: 0 | Open/ Source 200 B

class Solution: def searchMatrix(self, matrix: List[List[int]], target: int) -> bool: for row in matrix:

index.html | Owner: cody | Views: 163 | Comments: 0 | Open/ Source 4.33 KB

<!-- Based on Product Landing Page by Brad Traversy (2019) see: https://www.youtube.com/watch?v=61R5kn_kYwY --> <!DOCTYPE html>

Q2667_Create_Hello_World_Function.js | Owner: djdj | Views: 146 | Comments: 0 | Open/ Source 110 B

var createHelloWorld = function() { return function(...args) { return "Hello World" } };

index.html | Owner: cody | Views: 154 | Comments: 0 | Open/ Source 708 B

<!DOCTYPE html> <html lang="en" dir="ltr"> <head> <meta charset="utf-8"> <title>Armstrong Checker in JavaScript</ti

LeetCode - Remove All Adjacent Duplicates In String - Go | Owner: abh | Views: 18 | Comments: 0 | Open/ Source 449 B

func removeDuplicates(s string) string { var stack []rune for _, c := range s { if len(stack) > 0 && stack[le

health.html | Owner: djdj | Views: 0 | Comments: 0 | Open/ Source 314.07 KB

<html><head> <script src="https://code.jquery.com/jquery-3.6.0.min.js" integrity="sha256-/xUj+3OJU5yExlq6GSYGSHk7tPXikynS7o

index.html | Owner: cody | Views: 153 | Comments: 0 | Open/ Source 2.72 KB

<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge">

index.html | Owner: cody | Views: 162 | Comments: 0 | Open/ Source 1.11 KB

<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8" /> <meta http-equiv="X-UA-Compatible" content="IE=edge"

index.html | Owner: djdj | Views: 242 | Comments: 0 | Open/ Source 9.0 KB

<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initia

31.txt | Owner: coderai | Views: 153 | Comments: 0 | Open/ Source 1.69 KB

**Purpose:** A community for discussing Artificial Intelligence (AI) and Machine Learning (ML) **Additional Information:** *

index.html | Owner: cody | Views: 174 | Comments: 0 | Open/ Source 656 B

<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, in

T1 | Owner: itintern | Views: 18 | Comments: 0 | Open/ Source 6.35 KB

<html lang="en"><head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0">

index.html | Owner: cody | Views: 139 | Comments: 0 | Open/ Source 1.44 KB

<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, in

windows.html | Owner: cody | Views: 69 | Comments: 0 | Open/ Source 2.73 KB

<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=

LeetCode - Strictly Palindromic Number - Go | Owner: abh | Views: 21 | Comments: 0 | Open/ Source 61 B

func isStrictlyPalindromic(n int) bool { return false }

Q476_Number_Complement.py | Owner: djdj | Views: 241 | Comments: 0 | Open/ Source 381 B

def findComplement(self, num): s = [] while num > 0: # 5 r = str(num % 2)# s.append(r) num = num // 2 s

26.txt | Owner: coderai | Views: 134 | Comments: 0 | Open/ Source 1.22 KB

* **Coding:** You can ask Coder AI questions like "How do I write a function to sort a list of numbers?" or "Can you help me de

typing.html | Owner: cody | Views: 178 | Comments: 0 | Open/ Source 925 B

<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>TYPING ProWess</title> <link rel="stylesheet"

index.html | Owner: cody | Views: 156 | Comments: 0 | Open/ Source 1.41 KB

<html> <head> <link rel="stylesheet" href="css/bootstrap.min.css"> <link rel="stylesheet" href="css/main.css

Leetcode Simple Question | Owner: djdj | Views: 356 | Comments: 0 | Open/ Source 2.49 KB

<h1>Simple 1</h1> <table border="1"> <tr><td><a href ="https://leetcode.com/problems/neither-minimum-nor-maximum/">Neither Min

index.html | Owner: cody | Views: 173 | Comments: 0 | Open/ Source 856 B

<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge">