- Видео 13
- Просмотров 10 289
Crygnus Productions
Добавлен 9 авг 2020
Black Peak via Wing Lake (attempt) | Larch Madness | October 2024 | Washington Hikes
A strenuous hike towards the Black Peak in the mountains of North Cascades in Washington US. We attempted this hike during the peak season for Larches which are sprinkled throughout the route. Only one of us could reach to the peak and view up there are spectacular!
Trail length - 11.4 mi
Elevation Gain - 5140 ft
--------------------------------------------------------------------
Music: Bensound.com/free-music-for-videos
License code: MI982WEWLA2WFGCS
Trail length - 11.4 mi
Elevation Gain - 5140 ft
--------------------------------------------------------------------
Music: Bensound.com/free-music-for-videos
License code: MI982WEWLA2WFGCS
Просмотров: 148
Видео
Lake Ingalls | August 2024 | Washington Hikes
Просмотров 1402 месяца назад
Trail length: 9.0 mi Elevation Gain: 2840 ft Summer Music: Bensound.com/free-music-for-videos License code: 4AF8I6UI0FSC0NVP Acoustic Breeze Music I use: www.bensound.com License code: RNMLUSGZBZJPPWDB A New Beginning Music: Bensound.com/free-music-for-videos License code: AGW0KUWFVQTGEEM7
Blanca Lake Trail | August 2024 | Washington Hikes
Просмотров 902 месяца назад
A fun hike to the turquoise colored Blanca Lake! Trail length: 8 mi Elevation Gain: 3370 ft Music in this video - New Frontier Music by www.bensound.com License code: 6LFEZENP3MAVAUZF Once Again Music I use: www.bensound.com License code: KJZ7QSXXGLDZSQ8Z
Burroughs Mountain Loop | Mount Rainier National Park | August 2024 | Washington Hikes
Просмотров 803 месяца назад
Scenic hike with beautiful views of the great Mount Rainier throughout. A must do hike in Washington! Trail length: 9.5 mi Elevation gain: 2601 ft Music in this video Energy Royalty Free Music: Bensound.com License code: FVFEAGFWVTNP3WUU A new beginning Music: www.bensound.com/free-music-for-videos License code: NB69VTQBML1JIYTT
Gothic Basin & Foggy Lake | July 2024 | Washington Hikes
Просмотров 1963 месяца назад
Trail length: 10.2 mi Elevation Gain: 3140 ft
Mount Si & the Haystack | July 2024 | Washington Hikes
Просмотров 993 месяца назад
Trail length: 8 mi Elevation gain: 3400 ft
How to implement your own mergesort in Haskell...
Просмотров 1,2 тыс.3 года назад
Nothing fancy here.. Just your regular mergesort. The twist is that it's in Haskell!! With the powerful declarative syntax supported by this language, you can write your pseudocode with minimal changes and come out with a beautiful looking code in Haskell! :) I do spend some time explaining Haskell syntax (where expressions, pattern matching and guard expressions) for those who are totally new ...
Haskelling in Hackerrank | Mini-Max Sum | E02
Просмотров 3753 года назад
Today, we tackle the mini-max sum problem. In the process of solving this, we learn about Eta reduction, Data.List module, unwords, init and tail functions in Haskell base library. Problem - www.hackerrank.com/challenges/mini-max-sum/problem
Haskelling in Hackerrank!! | Competitive Coding | E01
Просмотров 5833 года назад
This is E01 of a series of videos where we will venture deep into the world of functional programming and solve competitive coding problems on Hackerrank in Haskell!!
[Part 2] How to Loop or Iterate in Functional Programming Languages | Looping in Haskell
Просмотров 9313 года назад
This is the second video of a two part series of videos. We will take a look at various ways of looping or iterating over a container like list in Haskell. If you do enjoy this, please hit that like button, share this video with your friends and family and subscribe for more educational content coming up soon. The three methods I talked in Part 1 are - Mimicking a Java style for loop - This is ...
How to Loop or Iterate in Functional Programming Languages | Looping in Haskell
Просмотров 4,5 тыс.3 года назад
This video is the first of a two part series of videos. We will take a look at various ways of looping or iterating over a container like list in Haskell. Instead of the good old fashioned for loops, we have a bunch of exciting new ways or iterating in a functional style in Haskell. In total, I am going to talk about six ways of iterating over a list, three of which are present in this video an...
Dynamic Programming in Haskell | Lazy Evaluation | Infinite Data Structures
Просмотров 1,8 тыс.3 года назад
In this video, I explain how to implement Dynamic Programming in Haskell by making use of the lazy evaluation feature of Haskell and the ability to define infinite data structures in a self-referential way. The video also explains how to scale up the approach from one dimensional dynamic programming to multi-dimensional dynamic programming without having to change much of the core logic. Becaus...
Road-trip in France | From Annecy to Tignes
Просмотров 1384 года назад
Today we will go on a journey from Annecy to the quaint little town called Tignes where we stopped at a camping site to rest for the day. The journey starts when we finished our paragliding session in Annecy. We took a few stops in between not just for fuel (first fade-out) and lunch (second fade-out) but also for looking at the vista (rest of the fade-outs). Hope you enjoy. All the music in th...
The perfect time of year for this outing. Nice job with the video.
what gear do you use?
do you recommend osprey?
what day did of the week was this?
Saturday. October 12th
This video has nothing to do with dynamic programming. The author has no idea what dynamic programming is. The video is nice, but the title does not fit.
scanl seems handy. I could have used that in some of my code instead of folding using a list as an accumulator lol
Thank you!
Thank you so much, this was so helpful!! ❤❤❤
Pretty informative
fibs = 1 : 2 : zipWith (+) fibs (tail fibs)
You are right. This is a much celebrated example implementation in Haskell. The reason I implemented fibonacci the way I did because I wanted to point out how close you can stay to the recursive definition and still implement a fast solution. It also helps to clarify the scaling up to multi dimensional DP. Cheers!
@@crygnusproductions1660 yeah but this solution is O(n) and if I remember correctly (!!) is linear so your solution is quadratic. So dp in haskell stays bad