-4*-5

0

number series 0, 0, 2, 1, 4, 2, 6, 3, 8, 4, 10, 5, 12, 6, 14, 7, 16, 8

By Wooden Hammer Phyllis Parisian at Jun 11 2021

0

def check_zip_code(text): result = re.search(r'\d{5}(?:-\d{4})?', text) return result != None

By Beginner Pete WatsicaV at Oct 16 2020

0

public class Frazione { public static void main(String[] args) { Frazione a = new Frazione(3, 4); Frazione b = new Frazione(5, 4); System.out.println(getAddizione(a + b)); } }

By Beginner Natalie Jenkins at Dec 14 2020

0

----> 1 import cv2 2 import os 3 import matplotlib.pyplot as plt 4 import numpy as np 5 import tensorflow as tf modulenotfounderror: no module named 'cv2'

By Beginner Bruce Bartoletti at Mar 01 2021

1

1.2+(sqrt(1-(sqrt(x^2+y^2))^2) + 1 - x^2-y^2) * (sin (10000 * (x*3+y/5+7))+1/4) from -1.6 to 1.6

By Wooden Hammer MinuteMaker42 at Jul 23 2021

0

Given an array, choose two contiguous non-overlapping arrays, such that all elements are strictly increasing. Return the maximum length possible for this combination. Ex: 7 1 2 4 6 5 3 8 9 10 => ans: 7 (Choose 1 2 4 6 & 8 9 10) l

By Beginner Rudy Abernathy at Nov 04 2020

0

test the program using the following procedure: stack of size n=6 1. call push(5) 2. call push(2) 3. call push(3) 4. call pop() 5. call push(6) 6. call push(9) 7. call push(3) 8. call display() 9. call top()

By Beginner Kristi Labadie at Apr 20 2021

0

Write a program that outputs all possibilities to put + or - or nothing between the numbers 1, 2, …, 9 (in this order) such that the result is always 100. For example 1 + 2 + 3 - 4 + 5 + 6 + 78 + 9 = 100

By Beginner da Blick at May 13 2021

0

print pattern 1 2 3 4 5 6 11 12 13 14 15 21 22 23 24 25 16 17 18 19 20 6 7 8 9 10 in java

By Beginner Wm Dietrich at Mar 10 2021

0

stack operations, if executed on an initially empty stack? push(5), push(3), pop(), push(2), push(8), pop(), pop(), push(9), push(1), pop(), push(7), push(6), pop(), pop(), push(4), pop(), pop().

By Beginner Evan Raynor at Oct 10 2020


Related code examples


Code examples by languages