Full-stack Developers
490 subscribers
3 photos
5 files
77 links
A channel where people can seek help or show their skills regarding full-stack web-dev. Happy coding
Download Telegram
6.Suppose that all edge weights in a graph are integers in the range from 1 to |V|.
How fast can you make Primโ€™s algorithm run? What if the edge weights are integers in the range from 1 to W for some constant W?

7. Given MST of graph G. Letโ€™s assume a new edge (that may or may not belong to MST) was added to the graph. What is running time complexity of figuring out does this new edge belong to MST or not? Consider all possible cases. You can use any algorithm. Is there a way to optimize your time complexity?

the one who answers this, will get [no]thing
while developing, do u open different desktops or all softwares in one desktop
Anonymous Poll
34%
different desktops
65%
all softwares in one desktop
1%
other, leave in comments
const handleSubmit = (e) => {
e.preventDefault()
setEmailError('')
setPasswordError('')
setUsernameError('')
if(username.length === 0){
setUsernameError('This field is required')
}
if(password.length === 0){
setPasswordError('This field is required')
}
if(email.length === 0){
setEmailError('This field is required')
}
if(email.length !== 0 && password.length !== 0 && username.length !== 0){
dispatch(register(username, email, password))
}
}

refactor this code to make it short and remember to follow the best practices, the concept is this function is called whenever a user submits a form, if any of the fields is left is left blank we set a error for that "particular" field and if at the last all the inputs have some value in them, the request is dispatched to the server

good luck ๐Ÿ‘
Regular Expression, Data Compression
Regular Expression:
1. Write a program at any programming language, which checks is input in correct
pattern using regular expressions.
Your program should handle both formats. If input is in correct pattern, output
โ€“ Yes, in other case- No
If your student ID in the range between 190107022 and 200117007:
Check if it is phone number of Beeline carrier. Beeline carrier phone number has
two formats:
Format 1: it starts with +7(777), followed by any 7 digits.
Format 2: it starts with +7(705), followed by any 7 digits.
Also, you need to consider that the number can start with 8. Your program should
handle both formats and if it starts with 8. The number is considered as correct if
it has parenthesis. If the input is correct output โ€“ Yes, in other case โ€“ No.
Compressthe given string using LZW Compression. Use ASCII hexadecimal format
from the table above. Also, the end of string is represented by 80.
If your student ID in the range 190107039 and 200117008
d) MLKMSMQMLKMLKLKMLKM
You need to show every step of compression as well as how you update your table.
You need to write the code.

any language ;)
Forwarded from Programming Challenges (MAXIMILIAN)
Jobs as a dev
+=========+
Many of you are very confident in being able to find a job! On the other side of the spectrum, some worry about the future.

Regardless which side you are own, we Have something for you!

+======+
@prograjobs
+======+

A Channel and a community with the mission of helping you from being a beginner to landing that first Job!

+======+

With our multiple partner-channels, we offer a very wide range of opportunities to grow personally!

And we have a nice family ;)
Did you know about this? ๐Ÿ˜ณ
Forwarded from TheFrontEnd๐Ÿ”ฅ
This media is not supported in your browser
VIEW IN TELEGRAM
Wuuut

Who else didn't know or am I the only one?
Interesting way how spotify makes their texts on images readable. Try it yourself!
How to prevent an SQL injection ๐Ÿง