paugramming

paugramming

Follow
homenewsletter
Tag

algorithms

#algorithms

More content

Read more stories on Hashnode


Articles with this tag

Elixir Today: Create a Hollow Pyramid Pattern using Elixir

May 11, 202290 views

Process create a file named hollow_pyramid.ex write the code hollow_pyramid = fn number -> for i <- 1..number do # for printing spaces ...

Elixir Today: Create a Hollow Pyramid Pattern using Elixir

Elixir Today: Create a Reverse Pyramid Pattern using Elixir

May 10, 202275 views

Process create a file named reverse_pyramid.ex write the code reverse_pyramid = fn number -> for i <- 0..number do # for printing spaces ...

Elixir Today: Create a Reverse Pyramid Pattern using Elixir

Elixir Today: Create a Pyramid using Elixir

May 9, 202252 views

Process create a file named pyramid.ex write the code pyramid = fn number -> for i <- 1..number do # for printing spaces spaces = ...

Elixir Today: Create a Pyramid using Elixir

Elixir Today: Create a Hollow Triangle Pattern using Elixir

May 8, 202257 views

Process create a file named hollow_triangle.ex write the code hollow_triangle = fn number -> for i <- 1..number do for j when j < i <- 0..i...

Elixir Today: Create a Hollow Triangle Pattern using Elixir

Elixir Today: Create a Left Triangle Pattern using Elixir

May 6, 202263 views

Process create a file named left_triangle.ex write the code left_triangle = fn n -> for i <- 0..n do for _ <- 0..i do "*" end end ...

Elixir Today: Create a Left Triangle Pattern using Elixir