Get Mystery Box with random crypto!

VIT-Algorithammer-grow as a college student

Logo of telegram channel thealgorithammerchannel — VIT-Algorithammer-grow as a college student V
Logo of telegram channel thealgorithammerchannel — VIT-Algorithammer-grow as a college student
Channel address: @thealgorithammerchannel
Categories: Education
Language: English
Subscribers: 51
Description from channel

👨‍🎓 A group for VIT students to grow as a college student
💰Learn Freelancing
👨‍💻 Learn Web Developement and Everything about Technology Every Week

Ratings & Reviews

4.33

3 reviews

Reviews can be left only by registered users. All reviews are moderated by admins.

5 stars

2

4 stars

0

3 stars

1

2 stars

0

1 stars

0


The latest Messages

2021-09-25 14:37:33
Today from 5PM
Introduction about the event
Introduction about GitHub and its use (with respect to the event)
Introduction and samples of HTML and CSS
Syntax, tips, and tricks of HTML and CSS
Tommorow from 5PM
Introduction about JavaScript
Hands-on experience in creating a complete website using HTML, CSS, and JavaScript
A chance to feature on our social media platforms
Query session


check their website for the link
909 views11:37
Open / Comment
2021-09-07 11:28:39 Do you want to save your time while coding in javascript?

check this !!!Top 4 Javascript One Liners that SAVES your TIME



1.Generate a Random ID
This simple function generates a random ID using uuid.
import { v4 as uuidv4 } from 'uuid';
const randomID = uuidv4(); // ⇨ '9b1deb4d-3b7d-4bad-9bdd-2b0d7b3dcb6d'

const { v4: uuidv4 } = require("uuid");
const randomID = uuidv4();
console.log({ randomID });


check

for 3 more
82 viewsedited  08:28
Open / Comment
2021-09-03 15:05:54 Top 5 JavaScript one liners which will save your time


You dont use javascript one liners? then you are wasting a lot of time , without noticing,

No worries , save it from now by saving this reel


Follow for more, please like it , if you have learnt something new , it really helps me a lot

https://www.instagram.com/reel/CTW8MysFxqW/?utm_medium=share_sheet
10 views12:05
Open / Comment
2021-09-03 09:08:38 check it , it is very important for freshers

https://instagram.com/stories/algorithammer/2654399974813828461?utm_source=ig_story_item_share&utm_medium=share_sheet
12 views06:08
Open / Comment
2021-08-31 15:45:37 Get student discount on Apple Laptops , Mackbook , Mackbook Pro

comment down ,

like the video , if you have learnt something new.

subscribe for more !!!!

https://youtube.com/shorts/R9z1H0eIGQs?feature=share
23 views12:45
Open / Comment
2021-08-25 15:34:59 Top 5 Free APIS for Developers!!!

you can use them in your projects, and learn to CRUD with APIS
It is very useful for frontend developers, who wants to learn what is and how API works.

do watch it

please like if you have learnt something new,

subscribe for more

and share it with your friends, to keep posting : )



82 views12:34
Open / Comment
2021-08-23 17:01:17 Do you (freshers) have any questions which you would like to ask your seniors?
163 views14:01
Open / Comment
2021-08-22 13:13:05 which programming language should you start with to learn coding?

Start learning to write code in python, it is very easy to read, learn and write you dont need to spend too much time in understand the syntax .
294 viewsedited  10:13
Open / Comment
2021-08-21 14:58:45 read caption

comment down on which programming language you want to start with

Please Like if you have found something useful

Share it with your friends , and ask them their programming language to start

https://www.instagram.com/reel/CS1d31lF6uu/?utm_medium=share_sheet
56 views11:58
Open / Comment
2021-08-21 13:17:20 second problem : Easy:

You are given a sequence a1, a2, ..., aN. Find the smallest possible value of ai + aj, where 1 ≤ i < j ≤ N.

Input
The first line of the input contains an integer T denoting the number of test cases. The description of T test cases follows.

The first line of each description consists of a single integer N.

The second line of each description contains N space separated integers - a1, a2, ..., aN respectively.

Output
For each test case, output a single line containing a single integer - the smallest possible sum for the corresponding test case.

Constraints
T = 105, N = 2 : 13 points.
T = 105, 2 ≤ N ≤ 10 : 16 points.
T = 1000, 2 ≤ N ≤ 100 : 31 points.
T = 10, 2 ≤ N ≤ 105 : 40 points.
1 ≤ ai ≤ 106
Example
Input:
1
4
5 1 3 4

Output:
4


Explanation
Here we pick a2 and a3. Their sum equals to 1 + 3 = 4.

what is your solution for this?
466 viewsedited  10:17
Open / Comment