Problem Similar to this question here, I am trying to implement sort algorithms in Julia, as part of a package. […]
Tag: julia
Search algorithms in julia
Problem I’ve been trying to implement the basic search algorithms: Sequential search for ordered and unordered arrays and the binary […]
Idiomatic string from/to integer conversions in Julia (Project Euler #33)
Problem I am starting to learn Julia. For getting fluent in the syntax, I am solving some of the easier […]
For names sake – Project Euler 22
Problem Project Euler – 22 Names scores Using names.txt (right click and ‘Save Link/Target As…’), a 46K text file containing […]
Return n largest nonzero entries of an array
Problem For something I’m working on, I need a function that takes in a one-dimensional array vec of integers and […]
Sort Algorithms in Julia
Problem Similar to this question here, I am trying to implement sort algorithms in Julia, as part of a package. […]
Sort three numbers
Problem So, I wrote this function to sort three numbers in Julia. Any feedback on readability, performance, and Julian-ness would […]
Parsing values from string into struct using match in Julia
Problem My goal I am parsing from a string which contains token:value pairs into a type. Example: mutable struct Foo […]